home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
vbdatabs
/
as2ps.h
< prev
next >
Wrap
C/C++ Source or Header
|
1999-03-31
|
2KB
|
43 lines
// ------------------------------- //
// -------- Start of File -------- //
// ------------------------------- //
// ----------------------------------------------------------- //
// C++ Header File Name: as2ps.h
// Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
// Produced By: Doug Gaer
// File Creation Date: 12/17/1997
// Date Last Modified: 03/31/1999
// ----------------------------------------------------------- //
// ---------- Include File Description and Details ---------- //
// ----------------------------------------------------------- //
/*
ASCII to PostScript converter program.
Changes:
================================================================
03/31/1999: - Modified code to expand wildcard characters used
in command-line arguments.
Changed by: Doug Gaer
*/
// ----------------------------------------------------------- //
#ifndef __ASPS_HPP__
#define __ASPS_HPP__
#include "pscript.h"
// Postscript driver version number and program name
const double ASPSVersionNumber = 1031.101;
const char *ProgramName = "as2ps";
// AS2PS program functions
void HelpMessage(const char *program_name, const double version_number);
PostScriptDrv ProcessArgs(int argc, char *argv[]);
int GenOutputFileName(char *extension);
void DocumentSetup(PostScriptDrv &psdrv);
#endif // __ASPS_HPP__ //
// ----------------------------------------------------------- //
// ------------------------------- //
// --------- End of File --------- //
// ------------------------------- //